go/ast.SendStmt.Chan (field)

7 uses

	go/ast (current package)
		ast.go#L646: 		Chan  Expr
		ast.go#L776: func (s *SendStmt) Pos() token.Pos       { return s.Chan.Pos() }
		walk.go#L210: 		Walk(v, n.Chan)

	go/parser
		parser.go#L1953: 		return &ast.SendStmt{Chan: x[0], Arrow: arrow, Value: y}, false
		parser.go#L2292: 			comm = &ast.SendStmt{Chan: lhs[0], Arrow: arrow, Value: rhs}

	go/printer
		nodes.go#L1330: 		p.expr0(s.Chan, depth)

	go/types
		stmt.go#L416: 		check.expr(&ch, s.Chan)